How to install arduino-cli on Linux and compile / flash Moppy2
On Arch Linux and derivatives execute:
sudo pacman -Syu arduino-cli
arduino-cli config init
arduino-cli board list
If the TimerOne library is not installed, the following error will pop up during compilation:
src/MoppyInstruments/MoppyTimer.cpp:4:10: fatal error: TimerOne.h: No such file or directory
Install TimerOne Library to fix this issue:
arduino-cli lib install TimerOne
arduino-cli compile --fqbn arduino:avr:uno ./Moppy2-Arduino.ino
sudo arduino-cli upload -p /dev/ttyACM0 --fqbn arduino:avr:uno Moppy2-Arduino.ino
In Arch Linux, you need to pull it from the AUR (for example with the AUR helper yay
):
yay -Syu jdk21-openjdk
So far the application only works on Java 21.x.
Put the following line to the beginning of the bin/MoppyControlGUI
script to override the use of OpenJDK version 21.x:
JAVA_HOME=/usr/lib/jvm/java-21-openjdk
Execute the bash file in ./bin/
as sudo to be able to access serial ports:
sudo ./MoppyControlGUI